home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 July / EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso / earcd / utils / virusworkshop / arexx / error.rexx next >
OS/2 REXX Batch file  |  1997-07-06  |  606b  |  24 lines

  1.  
  2. /* Arexxtestscript for the viruskiller VirusWorkshop from Markus Schmall */
  3. /* Version 1.0 (5.6.1995)                                                */
  4.  
  5. OPTIONS RESULTS                             /* enable return codes     */
  6.  
  7. address 'VWPort'
  8.  
  9.  
  10. OPTIONS FAILAT 999                          /* ignore warnings         */
  11.  
  12. /* ------------------------ inSERT YOUR CODE HERE: ------------------- */
  13.  
  14. say "Try to produce an error..."
  15. "AFILE ram:test.lha"
  16. IF rc=10 THEN say "Unkown command for the arexxport of VirusWorkshop"
  17.  
  18. /* ---------------------------- END OF YOUR CODE --------------------- */
  19.  
  20. EXIT
  21.  
  22.  
  23.  
  24.